home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gpp-1_42.lha / g++-1.42.0 / lastfile.c < prev    next >
Text File  |  1991-10-19  |  2KB  |  40 lines

  1. /* Mark end of data space to dump as pure, for GNU Emacs.
  2.    Copyright (C) 1985 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU Emacs General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU Emacs, but only under the conditions described in the
  15. GNU Emacs General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU Emacs so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22. /* How this works:
  23.  
  24.  Fdump_emacs dumps everything up to my_edata as text space (pure).
  25.  
  26.  The files of Emacs are written so as to have no initialized
  27.  data that can ever need to be altered except at the first startup.
  28.  This is so that those words can be dumped as sharable text.
  29.  
  30.  It is not possible to exercise such control over library files.
  31.  So it is necessary to refrain from making their data areas shared.
  32.  Therefore, this file is loaded following all the files of Emacs
  33.  but before library files.
  34.  As a result, the symbol my_edata indicates the point
  35.  in data space between data coming from Emacs and data
  36.  coming from libraries.
  37. */
  38.  
  39. char my_edata = 0;
  40.